Documentation > CMS Template API Library > Input > StartTabbedPanel(List[String])
StartTabbedPanel
Starts the tabbed panel. Similar to a windows panel, a tabbed panel (unlike an expand panel) displays a list of tabs that when selected shows the hidden panel.
public System.Void StartTabbedPanel(List[String])
Parameters
Name | Description | Type |
---|---|---|
titles | The titles for each tab | List<String> |
Code Example
C#
Sample:
Input.StartTabbedPanel("Option1", "Option2", "Option3"); Input.ShowTextBox("Option1", "option1"); Input.NextTabbedPanel(); Input.ShowTextBox("Option2", "option2"); Input.NextTabbedPanel(); Input.ShowTextBox("Option3", "option3"); Input.EndTabbedPanel();